* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cormorant Garamond", serif;
}

body {
  background: #fff;
  color: #123628;
}

/* ------ HEADER ------ */
.site-header {
  background: linear-gradient(90deg, #6aa171, #234a3b);
  padding: 18px 0;
}

.header-inner {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 28px;
  color: white;
  text-decoration: none;
  transition: color .3s;
}

.brand:hover {
  color: #b3ffbe;
}

.nav-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: color .3s;
}

.nav-list a.active,
.nav-list a:hover {
  color: #b3ffbe;
}

.cart {
  font-size: 22px;
  text-decoration: none;
  color: white;
}

/* ------ TITLE ------ */
.title {
  text-align: center;
  margin: 40px 0 30px;
  font-size: 48px;
}

/* ------ PRODUCT GRID —— CORREGIDO ------ */
.productos {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 35px; 
  padding-bottom: 40px;
}

.producto {
  text-align: center;
  opacity: 0;
  animation: fadeIn .9s ease forwards;
}

.producto img {
  width: 75%;
  display: block;
  margin: auto;
  border-radius: 8px;
}


.producto h3 {
  margin-top: 8px; 
  font-size: 20px;
}

.stars {
  color: #1c4b39;
  font-size: 18px;
  margin-top: 2px; 
}

.price {
  margin: 6px 0 14px; 
  font-size: 19px;
}

/* ANIMACIÓN SUAVE */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ------ BOTÓN ------ */
.btn-add {
  background: linear-gradient(90deg, #c9d5cc, #234a3b);
  color: white;
  border: none;
  padding: 12px 0;
  width: 100%;
  font-size: 17px;
  border-radius: 25px;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}

.btn-add:hover {
  background: #6f6f6f;
  transform: scale(1.03);
}

/* ------ MARQUESINA ------ */
.marquee-wrap {
  background: linear-gradient(90deg, #6aa171, #234a3b);
  color: white;
  padding: 22px 0;
  margin-top: 70px;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  font-size: 28px;
  text-align: center;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

/* ----- FOOTER ----- */
.site-footer {
  padding: 28px 0;
  background: linear-gradient(180deg, #1b4733, #0d2b1d);
  color:#e7efe8;
  margin-top: 20px;
}

.footer-inner {
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
}

.brand-footer {
  font-size: 26px;
  color: #e7efe8;
}

.footer-nav {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.footer-nav a {
  color: #dbe7dc;
  text-decoration:none;
  font-size:0.9rem;
  transition: .2s ease;
}

.footer-nav a:hover {
  color: #b3ffbe;
}

.contacto p {
  font-size: 0.9rem;
  color:#dbe7dc;
  margin: 3px 0;
}

@media (min-width: 720px) {
  .row { flex-direction:row; }
  .products .card { flex:1; }
  .socials { flex-direction:row; }
  .about-scroll { height: 260px; }
}

@media (min-width: 1024px) {
  .hero { height: 70vh; min-height: 600px; }
  .hero-overlay { padding-left: 80px; padding-top: 48px; }
  .hero-title { font-size: clamp(2.4rem, 6vw, 5rem); }
  .container { max-width: 1320px; }
}
